home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / STDLIB.PAK / MAKEFILE < prev    next >
Text File  |  1997-05-06  |  4KB  |  81 lines

  1. #==========================================================================
  2. #
  3. #  makefile - makefile for examples
  4. #
  5. #==========================================================================
  6. #
  7. #  (c) Copyright 1994, 1995 Rogue Wave Software, Inc.
  8. #  ALL RIGHTS RESERVED
  9. #
  10. #  The software and information contained herein are proprietary to, and
  11. #  comprise valuable trade secrets of, Rogue Wave Software, Inc., which
  12. #  intends to preserve as trade secrets such software and information.
  13. #  This software is furnished pursuant to a written license agreement and
  14. #  may be used, copied, transmitted, and stored only in accordance with
  15. #  the terms of such license and with the inclusion of the above copyright
  16. #  notice.  This software and information or any other copies thereof may
  17. #  not be provided or otherwise made available to any other person.
  18. #
  19. #  Notwithstanding any other lease or license that may pertain to, or
  20. #  accompany the delivery of, this computer software and information, the
  21. #  rights of the Government regarding its use, reproduction and disclosure
  22. #  are as set forth in Section 52.227-19 of the FARS Computer
  23. #  Software-Restricted Rights clause.
  24. #
  25. #  Use, duplication, or disclosure by the Government is subject to
  26. #  restrictions as set forth in subparagraph (c)(1)(ii) of the Rights in
  27. #  Technical Data and Computer Software clause at DFARS 252.227-7013.
  28. #  Contractor/Manufacturer is Rogue Wave Software, Inc.,
  29. #  P.O. Box 2328, Corvallis, Oregon 97339.
  30. #
  31. #  This computer software and information is distributed with "restricted
  32. #  rights."  Use, duplication or disclosure is subject to restrictions as
  33. #  set forth in NASA FAR SUP 18-52.227-79 (April 1985) "Commercial
  34. #  Computer Software-Restricted Rights (April 1985)."  If the Clause at
  35. #  18-52.227-74 "Rights in Data General" is specified in the contract,
  36. #  then the "Alternate III" clause applies.
  37. #
  38. #==========================================================================
  39. #
  40. #  Makefile for the Rogue Wave Standard Library package, using
  41. #  Borland C++ with a Win32 target.
  42. #
  43. #  Note ONLY the Borland-supplied "make" command
  44. #  should be used.
  45. #
  46. #==========================================================================
  47.  
  48. !include makeincl.inc
  49.  
  50. ########################   Targets    #################################
  51.  
  52. all : accum.exe adj_diff.exe advance.exe auto_ptr.exe b_search.exe \
  53.     binders.exe bitset.exe complex.exe copyex.exe count.exe \
  54.     deque.exe distance.exe eqlrange.exe equal.exe exceptio.exe \
  55.     exceptn.exe fill.exe find.exe find_f_o.exe for_each.exe \
  56.     funct_ob.exe generate.exe heap_ops.exe includes.exe \
  57.     inr_prod.exe ins_itr.exe lex_comp.exe limits.exe list.exe \
  58.         map.exe max.exe max_elem.exe merge.exe mismatch.exe \
  59.     multimap.exe multiset.exe negator.exe nthelem.exe p_queue.exe \
  60.     partsort.exe partsum.exe permute.exe pnt2fnct.exe prtition.exe \
  61.     queue.exe remove.exe replace.exe rev_itr.exe reverse.exe \
  62.     rndshufl.exe rotate.exe search.exe setex.exe set_diff.exe \
  63.     set_intr.exe set_unin.exe set_s_di.exe set_intr.cpp sort.exe \
  64.     stack.exe string.exe swap.exe trnsform.exe ul_bound.exe \
  65.     unique.exe vector.exe alg1.exe alg2.exe alg3.exe alg4.exe \
  66.     alg5.exe alg6.exe alg7.exe calc.exe complx.exe concord.exe \
  67.     graph.exe icecream.exe radix.exe sieve.exe spell.exe tele.exe \
  68.     widwork.exe
  69.  
  70.  
  71. clean:
  72.    if exist *.obj del *.obj
  73.    if exist *.exe del *.exe
  74.  
  75. ###########################  Implicit Rules #######################
  76. .cpp.obj:
  77.     $(CPP) $(CPPFLAGS) -c {$< }
  78.  
  79. .obj.exe:
  80.     $(CPP) $(CPPFLAGS) $<
  81.